home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / texmf / source / TeX / common / makefile < prev    next >
Makefile  |  1994-08-11  |  571b  |  35 lines

  1. # This file makes routines that are used everywher.
  2.  
  3. SITEDIR=..
  4. CC=gcc.020 -Wall
  5. OPT=-O3
  6. CFLAGS=$(OPT) -I$(SITEDIR)  -DTeX
  7. #-fomit-frame-pointer -fcombine-regs -fstrength-reduce
  8. LDFLAGS=$(OPT)
  9. SHELL=/bin/sh
  10.  
  11. .SUFFIXES:
  12. .SUFFIXES: .o .c
  13. .c.o:
  14.         $(CC) $(CFLAGS) -c $*.c
  15.  
  16. default: extra.o
  17.  
  18. triptrap: all
  19. all: main.o extra.o
  20.  
  21. main.o: main.c extra.h $(SITEDIR)/site.h
  22.  
  23. extra.o: extra.c $(SITEDIR)/site.h extra.h
  24.  
  25.  
  26. # We don't make `texmf.o', since the TeX and Metafont need to use
  27. # different names, hence they need different .o files.
  28.  
  29.  
  30. clean:
  31.     rm -f *.o
  32.  
  33. veryclean: clean
  34.